Package com.rnett.action.exec

Wrappers for @actions/exec.

Types

ConstantShell
Link copied to clipboard
abstract class ConstantShell(shellCommand: String, escapeWindows: Boolean) : Shell
A shell where the shell command is constant.
exec
Link copied to clipboard
object exec
Wrappers for @actions/exec.
ExecFailureException
Link copied to clipboard
data class ExecFailureException(command: String, returnCode: Int, stderr: String) : RuntimeException
ExecResult
Link copied to clipboard
data class ExecResult(command: String, returnCode: Int, stdout: String, stderr: String)
Shell
Link copied to clipboard
abstract class Shell(escapeWindows: Boolean)
Represents a shell used to run commands.